import { MDXComponents } from 'components/mdx-components' import MDXLayout from 'layouts/mdx' import { GetStaticPaths, GetStaticProps, InferGetStaticPropsType } from 'next' import { useMDXComponent } from 'next-contentlayer/hooks' import { getDocByType, getDocDoc } from 'utils/contentlayer-utils' export default function Page({ doc, }: InferGetStaticPropsType) { const Component = useMDXComponent(doc?.body?.code) return ( ) } export const getStaticPaths: GetStaticPaths = async () => { const paths = getDocByType('hooks').map((doc) => ({ params: { slug: doc.slug.split('/').slice(3) }, })) return { paths: paths, fallback: false } } export const getStaticProps: GetStaticProps = async (ctx) => { return { props: { doc: getDocDoc(['hooks', ctx.params.slug]) } } }